home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-04-15 | 556 b | 23 lines |
- CPP = gcc
- CFLAGS = -I../Include -g -c
- ODIR = ../bin
- PROGRAM = PrintLabels
- LFLAGS = -g -L../Lib -llibr -lg++
-
- SRCS = PrintLabels.cc
-
- OBJS = PrintLabels.o
-
- $(ODIR)/$(PROGRAM) : $(OBJS) ../Lib/liblibr.a
- $(CPP) -o $(ODIR)/$(PROGRAM) $(OBJS) $(LFLAGS)
-
- PrintLabels.o : PrintLabels.cc PrintLabels.h ../Include/common.h \
- ../Include/vm.h ../Include/vBTree.h \
- ../Include/Card.h ../Include/CardRecord.h \
- ../Include/ListRecord.h ../Include/PTree.h
- $(CPP) $(CFLAGS) PrintLabels.cc -o PrintLabels.o
-
- PrintLabels.h : PrintLabels.arg
- makeargprc PrintLabels
-
-